home *** CD-ROM | disk | FTP | other *** search
/ CDUTIL 13 / CDUTIL #13 Julio 1995.iso / windows / acadwin / support / ddrename.dcl < prev    next >
Encoding:
Text File  |  1995-02-08  |  2.7 KB  |  86 lines

  1. // Next available MSG number is     6 
  2. // MODULE_ID DDRENAME_DCL_
  3. /* Next available MSG number is   9 */
  4.  
  5. //----------------------------------------------------------------------------
  6. //
  7. //   DDRENAME.DCL   Version 1.0
  8. //
  9. //     Copyright (C) 1991, 1992, 1993, 1994 by Autodesk, Inc.
  10. //
  11. //     Permission to use, copy, modify, and distribute this software
  12. //     for any purpose and without fee is hereby granted, provided
  13. //     that the above copyright notice appears in all copies and
  14. //     that both that copyright notice and the limited warranty and
  15. //     restricted rights notice below appear in all supporting
  16. //     documentation.
  17. //
  18. //     AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
  19. //     AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
  20. //     MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE.  AUTODESK, INC.
  21. //     DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
  22. //     UNINTERRUPTED OR ERROR FREE.
  23. //
  24. //     Use, duplication, or disclosure by the U.S. Government is subject to
  25. //     restrictions set forth in FAR 52.227-19 (Commercial Computer
  26. //     Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)
  27. //     (Rights in Technical Data and Computer Software), as applicable.
  28. //
  29. //.  
  30. //----------------------------------------------------------------------------
  31. // 
  32. // Corresponding dialogue for DDRENAME.LSP which is an AutoLISP implementation
  33. // of the AutoCAD Rename command with wildcard support and a dialogue
  34. // interface.
  35. // 
  36. //----------------------------------------------------------------------------
  37.  
  38. //dcl_settings : default_dcl_settings { audit_level = 3; }
  39.  
  40.  
  41. ddrename : dialog {
  42.     label = "Cambiar nombre";
  43.     : row {
  44.         : column {
  45.             : list_box {
  46.                 label = "Objetos con nombre";
  47.                 key = "tables";
  48.                 width = 12;
  49.                 height = 8;
  50.             }
  51.         }
  52.         : column {
  53.             : list_box {
  54.                 label = "&Elementos";
  55.                 key = "table_items";
  56.                 width = 25;
  57.                 height = 8;
  58.                 multiple_select = true;
  59.             }
  60.         }
  61.     }
  62.     : column {
  63.         : edit_box { 
  64.             label = "&Antiguo nombre:";
  65.             key = "old";
  66.             edit_width = 31;
  67.         edit_limit = 217;
  68.         }
  69.         : row {
  70.             : button {
  71.                 label = "&Renombrar como:";
  72.                 key = "rename";
  73.             }
  74.             : edit_box { 
  75.                 label = "";
  76.                 key = "new";
  77.                 edit_width = 31;
  78.             edit_limit = 217;
  79.             }
  80.         }
  81.     }
  82.     spacer_1;
  83.     ok_cancel_help_errtile;
  84. }
  85.  
  86.